home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / C_Interp.sit.hqx / C_Interp / READ ME! < prev    next >
Text File  |  1993-05-14  |  1KB  |  23 lines

  1. This source code implements a fairly complete C interpreter. The source code has been
  2. compiled under Think C 5.0 as well as various flavors of ANSI C on several Unix boxes.
  3.  
  4. The code was originally part of the "Terminal 2.2" distribution that can be found on
  5. various Mac archives. I pulled the guts of the interpreter out and isolated the various
  6. pieces required to make it stand-alone. I'd love to credit the original author, but I have
  7. no clue who he/she may be. As best I can tell, there are no restrictions on the source
  8. code.
  9.  
  10. This Think C project includes the basic source code needed to incorporate the interpreter
  11. into any program. A single procedure call found in "main.c" kicks the whole thing off.
  12. Most of the built-in functions are found in Script.c and it's easy to add your own by
  13. writing the routine and stuffing the appropriate info in the table at the end of that
  14. source file. I've removed several of the built-ins that were specific to the Terminal
  15. program.
  16.  
  17. Please use this source as you see fit. I treat a large chunk of it as a black box, since
  18. I am not the author. Therefore, any problems you may run across should be considered
  19. your own, since I have no clue how this beast works. See the "parser.docs" file for the
  20. real scoop on how to use the interpreter.
  21.  
  22. Chuck Shotton
  23. cshotton@oac.hsc.uth.tmc.edu